home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / gnu / glibc108.zip / glibc108 / sysdeps / i386 / __longjmp.c next >
C/C++ Source or Header  |  1994-04-26  |  2KB  |  69 lines

  1. /* Copyright (C) 1991, 1992, 1994 Free Software Foundation, Inc.
  2. This file is part of the GNU C Library.
  3.  
  4. The GNU C Library is free software; you can redistribute it and/or
  5. modify it under the terms of the GNU Library General Public License as
  6. published by the Free Software Foundation; either version 2 of the
  7. License, or (at your option) any later version.
  8.  
  9. The GNU C Library is distributed in the hope that it will be useful,
  10. but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  12. Library General Public License for more details.
  13.  
  14. You should have received a copy of the GNU Library General Public
  15. License along with the GNU C Library; see the file COPYING.LIB.  If
  16. not, write to the Free Software Foundation, Inc., 675 Mass Ave,
  17. Cambridge, MA 02139, USA.  */
  18.  
  19. #ifndef    __GNUC__
  20.   #error This file uses GNU C extensions; you must compile with GCC.
  21. #endif
  22.  
  23. /* Put these global register declarations first, because we get an error if
  24.    they come after any function definition, including inlines which might
  25.    be in some header.  */
  26.  
  27. #define REGS \
  28.   REG (bx);\
  29.   REG (si);\
  30.   REG (di);\
  31.   REG (bp);\
  32.   REG (sp)
  33.  
  34. #define REG(xx) register long int xx asm (#xx)
  35. REGS;
  36. #undef    REG
  37.  
  38. #include <ansidecl.h>
  39. #include <errno.h>
  40. #include <setjmp.h>
  41. #include <stdlib.h>
  42.  
  43. /* Jump to the position specified by ENV, causing the
  44.    setjmp call there to return VAL, or 1 if VAL is 0.  */
  45. __NORETURN
  46. void
  47. DEFUN(__longjmp, (env, val),
  48.       CONST jmp_buf env AND
  49.       int val)
  50. {
  51.   /* We specify explicit registers because, when not optimizing,
  52.      the compiler will generate code that uses the frame pointer
  53.      after it's been munged.  */
  54.  
  55.   register CONST __typeof (env[0]) *e asm ("cx");
  56.   register int v asm ("ax");
  57.  
  58.   e = env;
  59.   v = val == 0 ? 1 : val;
  60.  
  61. #define    REG(xx)    xx = (long int) e->__##xx
  62.   REGS;
  63.  
  64.   asm volatile ("jmp %*%0" : : "g" (e->__pc), "a" (v));
  65.  
  66.   /* NOTREACHED */
  67.   abort ();
  68. }
  69.